home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- ' Windows declarations
- Declare Sub hmemcpy Lib "Kernel" (lpDest As Any, lpSource As Any, ByVal nCount As Long)
-
- ' Windows constants
- Global Const WM_WINDOWPOSCHANGING = &H46
- Global Const SWP_NOSIZE = &H1
- Global Const SWP_NOMOVE = &H2
-
- ' Windows data types
- Type WINDOWPOS
- hWnd As Integer
- hwndInsertAfter As Integer
- x As Integer
- y As Integer
- cx As Integer
- cy As Integer
- flags As Integer
- End Type
-
-